# Put any code you'd like to run here!
2024 Nov 7th – UQ PUG 13
Welcome to UQ Python User Group! Check out our general info for how we work and what we do. Below you’ll find the details of this month’s gathering.
Overview
This month we will be discussing Collaborative User Groups (I know, it’s a bit meta, but we’re at ResBaz!), before our usual workshopping of each other’s questions.
Structure
- We start today by adding our names to the table below
- Add your questions to this page
- This month’s presentation
- Finally, we spend the rest of the session answering the questions you’ve brought!
Teams
We have moved from a mailing list to a Teams channel! Opt-in to receive PUG updates
How to use this document
This is a Jupyter Notebook, a document format where everything is separated into cells. Each cell contains either markdown, or python.
- The markdown cells allow you to write formatted text
- The python cells allow you to write AND run python
A few tips
- Double click on a cell to edit it
- CTRL + ENTER to run a cell
- Press
+ Code
or+ Markdown
in the top menu to create new cells. Alternatively, press the buttons between cells
Training Resources
We offer Python training sessions and resources, you can find our introductory guide here.
Introduce yourself
What’s your name? | Where are you from? | Why are you here? |
---|---|---|
Cameron | UQ Library & Physics | To share and learn |
Questions
If you have any Python questions you’d like to explore with the group, please put your question and name in the sections below.
If you think you can help, feel free to contribute to the answers section!
Question 1: User group experience | Cameron
- What has worked / not worked for user groups that you have participated in / facilitated?
- Is there anywhere you think a user group could work at your institution?
Answers
Question 2: What’s wrong with my code | Name
Add more details here, then press CTRL + ENTER when you’re done
# Put any code you'd like to run here! CTRL + ENTER will run the cell
imprt pandas
Cell In[1], line 3 imprt pandas ^ SyntaxError: invalid syntax
# Fix the typo
import pandas
print("worked!")
worked!
Answers
Question 3: Question | Name
Add more details here, then press CTRL + ENTER when you’re done
# Put any code you'd like to run here!
Answers
Question 4: Question | Name
Add more details here, then press CTRL + ENTER when you’re done
# Put any code you'd like to run here!
Answers
Question 5: Question | Name
Add more details here, then press CTRL + ENTER when you’re done
# Put any code you'd like to run here!